Socket
Socket
Sign inDemoInstall

@backstage/backend-common

Package Overview
Dependencies
Maintainers
0
Versions
1343
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@backstage/backend-common

Common functionality library for Backstage backends


Version published
Maintainers
0
Created

What is @backstage/backend-common?

@backstage/backend-common is a utility library for building backend services in the Backstage ecosystem. It provides common functionalities such as logging, database connections, and server setup, which are essential for developing robust and scalable backend services.

What are @backstage/backend-common's main functionalities?

Logging

Provides a root logger that can be used throughout the application for consistent logging.

const { getRootLogger } = require('@backstage/backend-common');
const logger = getRootLogger();
logger.info('This is an info message');

Database Connection

Helps in setting up and managing database connections using a configuration object.

const { DatabaseManager } = require('@backstage/backend-common');
const config = { /* database configuration */ };
const databaseManager = DatabaseManager.fromConfig(config);
const db = databaseManager.forPlugin('my-plugin');

Server Setup

Simplifies the process of setting up a web server with routing and middleware.

const { createServiceBuilder } = require('@backstage/backend-common');
const service = createServiceBuilder(module)
  .setPort(7000)
  .addRouter('/api', myApiRouter)
  .start();

Other packages similar to @backstage/backend-common

Keywords

FAQs

Package last updated on 14 Sep 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc